home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 280_01 / detab.c < prev    next >
Text File  |  1989-01-11  |  2KB  |  80 lines

  1. /* [DETAB.c of JUGPDS Vol.46] */
  2. /*
  3. *****************************************************************
  4. *                                *
  5. *    Written by  Hakuo Katayose (JUG-CP/M No.179)        *
  6. *            49-114 Kawauchi-Sanjuunin-machi        *
  7. *            Sendai, Miyagi 980                          *
  8. *            Phone: 0222-61-3219                *
  9. *                                *
  10. *       Modifird by Toshiya Oota   (JUG-CPM No.10)              *
  11. *                   Sakae ko-po 205                 *
  12. *            5-19-6 Hosoda                *
  13. *            Katusikaku Tokyo 124            *
  14. *                                *
  15. *        for MS-DOS Lattice C V3.1J & 80186/V20/V30    *
  16. *                                *
  17. *    Compiler Option: -ccu -k0(1) -ms -n -v -w        *
  18. *                                *
  19. *    Edited & tested by Y. Monma (JUG-CP/M Disk Editor)    *
  20. *            &  T. Ota   (JUG-CP/M Sub Disk Editor)    *
  21. *                                *
  22. *****************************************************************
  23. */
  24.  
  25. /* Library functions for Software Tools */
  26.  
  27. #include "stdio.h"
  28. #include "dos.h"
  29. #include "ctype.h"
  30. #include "tools.h"
  31. #include "toolfunc.h"
  32.  
  33. /* detab - convert tabs to euivalent number of blanks */
  34.  
  35. void    main(argc, argv)
  36. int    argc;
  37. char     **argv;
  38.  
  39. {
  40. char    tabs[MAXLINE];
  41. int    c, col ;
  42. void    settab();
  43. int    tabpos();
  44.  
  45.     settab(tabs, MAXLINE);
  46.     col = 1;
  47.     while ( (c = getchar() ) != EOF )
  48.         if ( c == '\t' )
  49.             do {
  50.                 putchar(' ');
  51.                 col++;
  52.         }
  53.             while( tabpos(col, tabs) == NO );
  54.         else {
  55.              putchar(c);
  56.             col = ( ( c == '\n' ) ? 1 : col + 1 );
  57.             }
  58. }
  59.  
  60.  
  61. int    tabpos( col, tabs )
  62. int    col;
  63. char    tabs[];
  64.  
  65. {
  66.     return( (col > MAXLINE) ? YES : (int) tabs[col] );
  67. }
  68.  
  69.  
  70. void    settab(tabs, maxlen)
  71. int    maxlen;
  72. char    tabs[];
  73. {
  74. int    i;
  75.  
  76.     for(i = 0; i <= maxlen; i++)
  77.         tabs[i] = ( ( i % 8 == 1 ) ? YES : NO );
  78.     return;
  79. }
  80.